home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / syn.exe / 0 / RCDATA / TFINDINFILESDIALOG / TFINDINFILESDIALOG.txt
Text File  |  2004-02-29  |  11KB  |  510 lines

  1. object FindInFilesDialog: TFindInFilesDialog
  2.   Left = 336
  3.   Top = 124
  4.   BorderStyle = bsDialog
  5.   Caption = 'Find in Files'
  6.   ClientHeight = 469
  7.   ClientWidth = 465
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poOwnerFormCenter
  16.   OnClose = FormClose
  17.   OnCreate = FormCreate
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 8
  22.     Top = 12
  23.     Width = 49
  24.     Height = 13
  25.     Caption = 'Find &what:'
  26.     FocusControl = cboFindText
  27.   end
  28.   object Label2: TLabel
  29.     Left = 8
  30.     Top = 60
  31.     Width = 36
  32.     Height = 13
  33.     Caption = 'In F&iles:'
  34.     FocusControl = cboFileTypes
  35.   end
  36.   object Label3: TLabel
  37.     Left = 8
  38.     Top = 84
  39.     Width = 44
  40.     Height = 13
  41.     Caption = 'In F&older:'
  42.     FocusControl = cboInFolder
  43.   end
  44.   object lblReplaceWith: TLabel
  45.     Left = 8
  46.     Top = 36
  47.     Width = 65
  48.     Height = 13
  49.     Caption = '&Replace with:'
  50.     FocusControl = cboReplaceWith
  51.   end
  52.   object cboFindText: TComboBox
  53.     Left = 80
  54.     Top = 8
  55.     Width = 265
  56.     Height = 21
  57.     ItemHeight = 13
  58.     TabOrder = 0
  59.     OnKeyDown = cboFindTextKeyDown
  60.   end
  61.   object cboFileTypes: TComboBox
  62.     Left = 80
  63.     Top = 56
  64.     Width = 265
  65.     Height = 21
  66.     ItemHeight = 13
  67.     TabOrder = 4
  68.     OnKeyDown = cboFindTextKeyDown
  69.     Items.Strings = (
  70.       '*.*'
  71.       '*.htm;*.html'
  72.       '*.pas;*.dpr'
  73.       '*.cpp;*.c;*.hpp;*.h')
  74.   end
  75.   object cboInFolder: TComboBox
  76.     Left = 80
  77.     Top = 80
  78.     Width = 241
  79.     Height = 21
  80.     ItemHeight = 13
  81.     TabOrder = 6
  82.     OnKeyDown = cboFindTextKeyDown
  83.   end
  84.   object gbSearchOptions: TGroupBox
  85.     Left = 8
  86.     Top = 109
  87.     Width = 177
  88.     Height = 105
  89.     Caption = 'Options'
  90.     TabOrder = 9
  91.     object cbSearchCaseSensitive: TCheckBox
  92.       Left = 8
  93.       Top = 16
  94.       Width = 153
  95.       Height = 17
  96.       Caption = 'C&ase sensitivity'
  97.       TabOrder = 0
  98.     end
  99.     object cbSearchWholeWords: TCheckBox
  100.       Left = 8
  101.       Top = 32
  102.       Width = 153
  103.       Height = 17
  104.       Caption = '&Whole words only'
  105.       TabOrder = 1
  106.     end
  107.     object chkRegExpr: TCheckBox
  108.       Left = 8
  109.       Top = 48
  110.       Width = 153
  111.       Height = 17
  112.       Caption = 'Regular E&xpression'
  113.       TabOrder = 2
  114.       OnClick = chkRegExprClick
  115.     end
  116.     object chkPane2: TCheckBox
  117.       Left = 8
  118.       Top = 80
  119.       Width = 153
  120.       Height = 17
  121.       Caption = 'Output in &Pane 2'
  122.       TabOrder = 3
  123.     end
  124.     object chkEscapeSequ: TCheckBox
  125.       Left = 8
  126.       Top = 64
  127.       Width = 153
  128.       Height = 17
  129.       Caption = '&Escape sequences'
  130.       TabOrder = 4
  131.     end
  132.   end
  133.   object btnBrowse: TCorelButton
  134.     Left = 352
  135.     Top = 80
  136.     Width = 17
  137.     Height = 21
  138.     Hint = 'Browse'
  139.     Caption = '...'
  140.     ParentShowHint = False
  141.     ShowHint = True
  142.     TabOrder = 8
  143.     OnClick = btnBrowseClick
  144.   end
  145.   object btnFind: TCorelButton
  146.     Left = 384
  147.     Top = 8
  148.     Width = 75
  149.     Height = 23
  150.     Caption = 'Find'
  151.     Default = True
  152.     ModalResult = 1
  153.     TabOrder = 15
  154.     OnClick = btnFindClick
  155.   end
  156.   object btnCancel: TCorelButton
  157.     Left = 384
  158.     Top = 40
  159.     Width = 75
  160.     Height = 23
  161.     Cancel = True
  162.     Caption = 'Cancel'
  163.     ModalResult = 2
  164.     TabOrder = 14
  165.   end
  166.   object gbScope: TGroupBox
  167.     Left = 192
  168.     Top = 109
  169.     Width = 177
  170.     Height = 101
  171.     Caption = 'Scope'
  172.     TabOrder = 10
  173.     object ckkAddOpenedFiles: TCheckBox
  174.       Left = 8
  175.       Top = 48
  176.       Width = 89
  177.       Height = 17
  178.       Caption = 'All &open Files'
  179.       TabOrder = 2
  180.     end
  181.     object chkRecurse: TCheckBox
  182.       Left = 24
  183.       Top = 32
  184.       Width = 137
  185.       Height = 17
  186.       Caption = 'Include &Subfolders'
  187.       TabOrder = 1
  188.     end
  189.     object chkAddProject: TCheckBox
  190.       Left = 8
  191.       Top = 64
  192.       Width = 89
  193.       Height = 17
  194.       Caption = 'All Pro&ject files'
  195.       TabOrder = 3
  196.     end
  197.     object chkInFolder: TCheckBox
  198.       Left = 8
  199.       Top = 16
  200.       Width = 153
  201.       Height = 17
  202.       Caption = 'Search in &Folder'
  203.       TabOrder = 0
  204.       OnClick = chkInFolderClick
  205.     end
  206.     object chkSkipbakFiles: TCheckBox
  207.       Left = 8
  208.       Top = 80
  209.       Width = 162
  210.       Height = 17
  211.       Hint = '|Skip .BAK files from search and don'#39't create backup for them'
  212.       Caption = 'Skip .BAK files'
  213.       Checked = True
  214.       State = cbChecked
  215.       TabOrder = 4
  216.     end
  217.   end
  218.   object btnExts: TCorelButton
  219.     Left = 352
  220.     Top = 56
  221.     Width = 17
  222.     Height = 21
  223.     Hint = 'Extensions'
  224.     Caption = '>'
  225.     ParentShowHint = False
  226.     ShowHint = True
  227.     TabOrder = 5
  228.     OnClick = btnExtsClick
  229.   end
  230.   object btnRegExp: TCorelButton
  231.     Left = 352
  232.     Top = 8
  233.     Width = 17
  234.     Height = 21
  235.     Hint = 'Metacharacters'
  236.     Caption = '>'
  237.     ParentShowHint = False
  238.     ShowHint = True
  239.     TabOrder = 1
  240.     OnClick = btnRegExpClick
  241.   end
  242.   object btnMore: TCorelButton
  243.     Left = 384
  244.     Top = 264
  245.     Width = 75
  246.     Height = 23
  247.     Caption = '&More >>'
  248.     TabOrder = 16
  249.     OnClick = btnMoreClick
  250.   end
  251.   object pnlMoreFolder: TPanel
  252.     Left = 8
  253.     Top = 300
  254.     Width = 449
  255.     Height = 25
  256.     Alignment = taLeftJustify
  257.     BevelOuter = bvLowered
  258.     Caption = ' Additional Folders:'
  259.     TabOrder = 17
  260.     object TBToolbar1: TTBToolbar
  261.       Left = 350
  262.       Top = 1
  263.       Width = 98
  264.       Height = 23
  265.       Align = alRight
  266.       Caption = 'Tools'
  267.       Images = CommandsDataModule.imlFilesToolBar
  268.       ParentShowHint = False
  269.       ShowHint = True
  270.       TabOrder = 0
  271.       object TBItem3: TTBItem
  272.         Caption = 'Add'
  273.         Hint = 'Add|Add Folder'
  274.         ImageIndex = 8
  275.         OnClick = TBItem3Click
  276.       end
  277.       object tbRemoveFolder: TTBItem
  278.         Caption = 'Remove'
  279.         Enabled = False
  280.         Hint = 'Remove|Remove selected Folder'
  281.         ImageIndex = 1
  282.         OnClick = tbRemoveFolderClick
  283.       end
  284.       object TBSeparatorItem1: TTBSeparatorItem
  285.       end
  286.       object tbUpFolder: TTBItem
  287.         Caption = 'Up'
  288.         Enabled = False
  289.         Hint = 'Up|Move Folder up'
  290.         ImageIndex = 2
  291.         OnClick = tbUpFolderClick
  292.       end
  293.       object tbDownFolder: TTBItem
  294.         Caption = 'Down'
  295.         Enabled = False
  296.         Hint = 'Down|Move Folder down'
  297.         ImageIndex = 3
  298.         OnClick = tbDownFolderClick
  299.       end
  300.     end
  301.   end
  302.   object lvMoreDirs: TListView
  303.     Left = 8
  304.     Top = 332
  305.     Width = 449
  306.     Height = 129
  307.     Columns = <
  308.       item
  309.         Width = 410
  310.       end>
  311.     HideSelection = False
  312.     RowSelect = True
  313.     ShowColumnHeaders = False
  314.     TabOrder = 18
  315.     ViewStyle = vsReport
  316.     OnSelectItem = lvMoreDirsSelectItem
  317.   end
  318.   object btnActiveDocPath: TCorelButton
  319.     Left = 328
  320.     Top = 80
  321.     Width = 17
  322.     Height = 21
  323.     Hint = 'Folder of the active Document'
  324.     Caption = '<'
  325.     Enabled = False
  326.     ParentShowHint = False
  327.     ShowHint = True
  328.     TabOrder = 7
  329.     OnClick = btnActiveDocPathClick
  330.   end
  331.   object cboReplaceWith: TComboBox
  332.     Left = 80
  333.     Top = 32
  334.     Width = 265
  335.     Height = 21
  336.     ItemHeight = 13
  337.     TabOrder = 2
  338.     OnKeyDown = cboFindTextKeyDown
  339.   end
  340.   object rgReplace: TRadioGroup
  341.     Left = 192
  342.     Top = 214
  343.     Width = 177
  344.     Height = 73
  345.     Caption = 'Replace'
  346.     ItemIndex = 0
  347.     Items.Strings = (
  348.       '&Don'#39't Replace'
  349.       'Do Rep&lace'
  350.       'Delete &Match')
  351.     TabOrder = 12
  352.     OnClick = rgReplaceClick
  353.   end
  354.   object btnControlChars: TCorelButton
  355.     Left = 352
  356.     Top = 32
  357.     Width = 17
  358.     Height = 21
  359.     Hint = 'Escape sequences'
  360.     Caption = '>'
  361.     ParentShowHint = False
  362.     ShowHint = True
  363.     TabOrder = 3
  364.     OnClick = btnControlCharsClick
  365.   end
  366.   object gbBinary: TRadioGroup
  367.     Left = 8
  368.     Top = 230
  369.     Width = 177
  370.     Height = 57
  371.     Caption = 'Binary files'
  372.     ItemIndex = 0
  373.     Items.Strings = (
  374.       '&Skip Binary Files'
  375.       '&Check Binary Files')
  376.     TabOrder = 11
  377.   end
  378.   object chkBackup: TCheckBox
  379.     Left = 301
  380.     Top = 248
  381.     Width = 60
  382.     Height = 17
  383.     Caption = 'Backup'
  384.     TabOrder = 13
  385.   end
  386.   object popExts: TPopupMenu
  387.     Left = 384
  388.     Top = 104
  389.   end
  390.   object popRegExp: TPopupMenu
  391.     Left = 384
  392.     Top = 72
  393.     object AnyCharacter1: TMenuItem
  394.       Caption = 'Any Character'
  395.       OnClick = AnyCharacter1Click
  396.     end
  397.     object CharacterinRagne1: TMenuItem
  398.       Tag = 1
  399.       Caption = 'Character inside Range'
  400.       OnClick = AnyCharacter1Click
  401.     end
  402.     object OutsideRange1: TMenuItem
  403.       Tag = 2
  404.       Caption = 'Character outside Range'
  405.       OnClick = AnyCharacter1Click
  406.     end
  407.     object N1: TMenuItem
  408.       Caption = '-'
  409.     end
  410.     object StartofLine1: TMenuItem
  411.       Tag = 10
  412.       Caption = 'Start of Line'
  413.       OnClick = AnyCharacter1Click
  414.     end
  415.     object EndofLine1: TMenuItem
  416.       Tag = 11
  417.       Caption = 'End of Line'
  418.       OnClick = AnyCharacter1Click
  419.     end
  420.     object N2: TMenuItem
  421.       Caption = '-'
  422.     end
  423.     object Matchzeroormore1: TMenuItem
  424.       Tag = 20
  425.       Caption = 'Match zero or more'
  426.       OnClick = AnyCharacter1Click
  427.     end
  428.     object Matchoneormore1: TMenuItem
  429.       Tag = 21
  430.       Caption = 'Match one or more'
  431.       OnClick = AnyCharacter1Click
  432.     end
  433.     object Matchntimes1: TMenuItem
  434.       Tag = 22
  435.       Caption = 'Match n times'
  436.       OnClick = AnyCharacter1Click
  437.     end
  438.     object Matchntomtimes1: TMenuItem
  439.       Tag = 23
  440.       Caption = 'Match n to m times'
  441.       OnClick = AnyCharacter1Click
  442.     end
  443.     object N3: TMenuItem
  444.       Caption = '-'
  445.     end
  446.     object Alphanumeric1: TMenuItem
  447.       Tag = 30
  448.       Caption = 'Alphanumeric'
  449.       OnClick = AnyCharacter1Click
  450.     end
  451.     object NonAlphanumeric1: TMenuItem
  452.       Tag = 31
  453.       Caption = 'Non Alphanumeric'
  454.       OnClick = AnyCharacter1Click
  455.     end
  456.     object Number1: TMenuItem
  457.       Tag = 32
  458.       Caption = 'Number'
  459.       OnClick = AnyCharacter1Click
  460.     end
  461.     object NonNumeric1: TMenuItem
  462.       Tag = 33
  463.       Caption = 'Non Numeric'
  464.       OnClick = AnyCharacter1Click
  465.     end
  466.     object N4: TMenuItem
  467.       Caption = '-'
  468.     end
  469.     object AnySpace1: TMenuItem
  470.       Tag = 40
  471.       Caption = 'Any Space'
  472.       OnClick = AnyCharacter1Click
  473.     end
  474.     object NonSpace1: TMenuItem
  475.       Tag = 41
  476.       Caption = 'Non Space'
  477.       OnClick = AnyCharacter1Click
  478.     end
  479.   end
  480.   object BrowseForFolder: TBrowseForFolder
  481.     Options = [boCenter]
  482.     Left = 384
  483.     Top = 144
  484.   end
  485.   object popControlChars: TPopupMenu
  486.     Left = 424
  487.     Top = 72
  488.     object Backslash1: TMenuItem
  489.       Caption = 'Backslash'
  490.       OnClick = Backslash1Click
  491.     end
  492.     object NewLine1: TMenuItem
  493.       Caption = 'New Line'
  494.       OnClick = Backslash1Click
  495.     end
  496.     object Tabulator1: TMenuItem
  497.       Caption = 'Tabulator'
  498.       OnClick = Backslash1Click
  499.     end
  500.     object Linefeed1: TMenuItem
  501.       Caption = 'Line feed'
  502.       OnClick = Backslash1Click
  503.     end
  504.     object Carriagereturn1: TMenuItem
  505.       Caption = 'Carriage return'
  506.       OnClick = Backslash1Click
  507.     end
  508.   end
  509. end
  510.